home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-10-23 | 886 b | 33 lines |
- #####################################################################
- #
- # Copyright 1993 Jeremy Slade.
- #
- # You are free to use all or any parts of the LogHook project
- # however you wish, just give credit where credit is due.
- # The author (Jeremy Slade) shall not be held responsible
- # for any damages that result out of use or misuse of any
- # part of this project.
- #
- #
- # Project: LogHook
- #
- # File: Makefile
- #
- # Description: Makefile to build the LogHook executables
- #
- # Original Author: Jeremy Slade
- #
- # Revision History:
- # Created
- # JGS Tue May 11 20:53:26 PDT 1993
- #
- #####################################################################
-
- CFLAGS = -g -Wall -ObjC -arch m68k -arch sparc -arch hppa -arch i386
-
- LogHook: LoginHook.m LogoutHook.m
- $(CC) $(CFLAGS) LoginHook.m -o LoginHook
- $(CC) $(CFLAGS) LogoutHook.m -o LogoutHook
-
-
-